home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / hdiff122.zip / CGET.BAT < prev    next >
DOS Batch File  |  1988-01-03  |  274b  |  13 lines

  1. echo off
  2. Rem usage: cget file,version
  3. Rem E.g.,  cget hdiff 110
  4. Rem        expects hdiff.scc, hdiff.110; makes hdiff.c
  5. if x%1 == x goto usage
  6. if x%2 == x goto usage
  7. hed %1.scc %1.%2 %1.c
  8. echo %1.c Ver %2 made
  9. goto exit
  10. :usage
  11. echo usage: cget file version
  12. :exit
  13.